home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / prompts.sql < prev    next >
Text File  |  2000-05-12  |  843b  |  22 lines

  1. /* RCSVER $Id: prompts.sql,v 1.3 1999-03-21 14:22:16-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        prompts.sql
  6. * Date:        02/17/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the prompts table. This table contains the prompts
  9. *        used at the OCU.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE prompts
  13. (
  14.     prompt_id    NUMBER(38),    /* ID of prompt */
  15.     descr        VARCHAR2(20),    /* Text of prompt */
  16.     name        VARCHAR2(30),    /* Name of prompt ("P_NAME...") */
  17.     config_num      NUMBER(38)
  18.                     CONSTRAINT ref_prompts REFERENCES configset(num)
  19.                     ON DELETE CASCADE,
  20.     CONSTRAINT pk_prompts PRIMARY KEY (prompt_id, config_num)
  21. );
  22.